home *** CD-ROM | disk | FTP | other *** search
- on mouseUp
- global bioInfo
- if the doubleClick then
- exit
- end if
- set bioInfo to []
- if (the hilite of member "biodata 14" = 0) and (the hilite of member "biodata 15" = 0) then
- cursor(0)
- alert("Please make a selection in the Current Goal category.")
- else
- repeat with i = 1 to 11
- if the hilite of member ("biodata " & i) = 1 then
- append(bioInfo, i)
- end if
- end repeat
- repeat with i = 13 to 15
- if the hilite of member ("biodata " & i) = 1 then
- append(bioInfo, i)
- end if
- end repeat
- if count(stamp) > 0 then
- giveadvice()
- end if
- writecycleinfo()
- prepBioDataSummary()
- cursor(0)
- end if
- end
-